-
Notifications
You must be signed in to change notification settings - Fork 13.9k
Fix doc link for poll method help
#148422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Update help message for `poll` method to new link.
|
rustbot has assigned @petrochenkov. Use |
|
The job Click to see the possible cause of the failure (guessed by this bot) |
| err.help("self type must be pinned to call `Future::poll`, \ | ||
| see https://rust-lang.github.io/async-book/04_pinning/01_chapter.html#pinning-in-practice" | ||
| see https://rust-lang.github.io/async-book/part-reference/pinning.html" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why tidy complains about this now, but this is what it seems to want:
| err.help("self type must be pinned to call `Future::poll`, \ | |
| see https://rust-lang.github.io/async-book/04_pinning/01_chapter.html#pinning-in-practice" | |
| see https://rust-lang.github.io/async-book/part-reference/pinning.html" | |
| err.help( | |
| "self type must be pinned to call `Future::poll`, \ | |
| see https://rust-lang.github.io/async-book/part-reference/pinning.html", |
Update help message for
pollmethod to new link.Fixes #147901